home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemimgo.h < prev    next >
C/C++ Source or Header  |  1993-04-28  |  895b  |  30 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMimageobject - derivative of GEMobject, allowing all the
  4. //                     operations on IMGs to work on GEMobjects.
  5. //
  6. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  7. //  This file is part of the gem++ library.
  8. //  You are free to copy and modify these sources, provided you acknowledge
  9. //  the origin by retaining this notice, and adhere to the conditions
  10. //  described in the file COPYING.LIB.
  11. //
  12. /////////////////////////////////////////////////////////////////////////////
  13.  
  14. #ifndef GEMimgo_h
  15. #define GEMimgo_h
  16.  
  17. #include <gemo.h>
  18.  
  19. class IMG;
  20.  
  21. // Image bitmap and icon bitmap foreground or mask.
  22. class GEMimageobject : public GEMobject
  23. {
  24. public:
  25.     GEMimageobject(class GEMform& f, int RSCindex, IMG& data);
  26.     GEMimageobject(class GEMform& f, int RSCindex, IMG& data, IMG& mask);
  27. };
  28.  
  29. #endif
  30.